net/http.http2writeContext.Framer (method)

15 uses

	net/http (current package)
		h2_bundle.go#L10779: 	Framer() *http2Framer
		h2_bundle.go#L10822: 	return ctx.Framer().WriteSettings([]http2Setting(s)...)
		h2_bundle.go#L10831: 	err := ctx.Framer().WriteGoAway(p.maxStreamID, p.code, nil)
		h2_bundle.go#L10849: 	return ctx.Framer().WriteData(w.streamID, w.endStream, w.p)
		h2_bundle.go#L10863: 	return ctx.Framer().WriteRSTStream(hp.StreamID, http2ErrCodeInternal)
		h2_bundle.go#L10869: 	return ctx.Framer().WriteRSTStream(se.StreamID, se.Code)
		h2_bundle.go#L10879: 	return ctx.Framer().WritePing(false, w.data)
		h2_bundle.go#L10889: 	return ctx.Framer().WritePing(true, w.pf.Data)
		h2_bundle.go#L10899: 	return ctx.Framer().WriteSettingsAck()
		h2_bundle.go#L10993: 		return ctx.Framer().WriteHeaders(http2HeadersFrameParam{
		h2_bundle.go#L11000: 		return ctx.Framer().WriteContinuation(w.streamID, lastFrag, frag)
		h2_bundle.go#L11042: 		return ctx.Framer().WritePushPromise(http2PushPromiseParam{
		h2_bundle.go#L11049: 		return ctx.Framer().WriteContinuation(w.streamID, lastFrag, frag)
		h2_bundle.go#L11061: 	return ctx.Framer().WriteHeaders(http2HeadersFrameParam{
		h2_bundle.go#L11082: 	return ctx.Framer().WriteWindowUpdate(wu.streamID, wu.n)